SQLSTATE[42S22]: Column not found: 1054 Unknown column 'RAND' in 'order clause' search►
SELECT * FROM `borrowing` WHERE (`user_id` = 1) AND (`date_give_back` IS NULL) ORDER BY RAND LIMIT 4
File: ...\vendor\nette\database\src\Database\ResultSet.php:68
58: $this->connection = $connection; 59: $this->supplementalDriver = $connection->getSupplementalDriver(); 60: $this->queryString = $queryString; 61: $this->params = $params; 62: 63: if (substr($queryString, 0, 2) === '::') { 64: $connection->getPdo()->{substr($queryString, 2)}(); 65: } elseif ($queryString !== NULL) { 66: $this->pdoStatement = $connection->getPdo()->prepare($queryString); 67: $this->pdoStatement->setFetchMode(PDO::FETCH_ASSOC); 68: $this->pdoStatement->execute($params); 69: } 70: $this->time = microtime(TRUE) - $time; 71: } 72:
...\vendor\nette\database\src\Database\ResultSet.php:68 source PDOStatement-> execute (arguments)
58: $this->connection = $connection; 59: $this->supplementalDriver = $connection->getSupplementalDriver(); 60: $this->queryString = $queryString; 61: $this->params = $params; 62: 63: if (substr($queryString, 0, 2) === '::') { 64: $connection->getPdo()->{substr($queryString, 2)}(); 65: } elseif ($queryString !== NULL) { 66: $this->pdoStatement = $connection->getPdo()->prepare($queryString); 67: $this->pdoStatement->setFetchMode(PDO::FETCH_ASSOC); 68: $this->pdoStatement->execute($params); 69: } 70: $this->time = microtime(TRUE) - $time; 71: } 72:
| $bound_input_params | array ()
|
|---|
...\vendor\nette\database\src\Database\Connection.php:161 source Nette\Database\ResultSet-> __construct (arguments)
151: /** @deprecated */ 152: function queryArgs($statement, array $params) 153: { 154: $this->connect(); 155: if ($params) { 156: array_unshift($params, $statement); 157: list($statement, $params) = $this->preprocessor->process($params); 158: } 159: 160: try { 161: $result = new ResultSet($this, $statement, $params); 162: } catch (\PDOException $e) { 163: $e->queryString = $statement; 164: $this->onQuery($this, $e); 165: throw $e;
| $connection | Nette\Database\Connection #373e |
|---|---|
| $queryString | "SELECT * FROM `borrowing` WHERE (`user_id` = 1) AND (`date_give_back` IS NULL) ORDER BY RAND LIMIT 4" (100)
|
| $params | array ()
|
...\vendor\nette\database\src\Database\Table\Selection.php:535 source Nette\Database\Connection-> queryArgs (arguments)
525: 526: 527: protected function createGroupedSelectionInstance($table, $column) 528: { 529: return new GroupedSelection($this, $table, $column); 530: } 531: 532: 533: protected function query($query) 534: { 535: return $this->connection->queryArgs($query, $this->sqlBuilder->getParameters()); 536: } 537: 538: 539: protected function emptyResultSet($saveCache = TRUE)
| $statement | "SELECT * FROM `borrowing` WHERE (`user_id` = ?) AND (`date_give_back` IS NULL) ORDER BY RAND LIMIT 4" (100)
|
|---|---|
| $params | array (1) |
...\vendor\nette\database\src\Database\Table\Selection.php:491 source Nette\Database\Table\Selection-> query (arguments)
481: throw new Nette\InvalidStateException('Table with no primary key requires an explicit select clause.'); 482: } 483: 484: try { 485: $result = $this->query($this->getSql()); 486: 487: } catch (\PDOException $exception) { 488: if (!$this->sqlBuilder->getSelect() && $this->previousAccessedColumns) { 489: $this->previousAccessedColumns = FALSE; 490: $this->accessedColumns = array(); 491: $result = $this->query($this->getSql()); 492: } else { 493: throw $exception; 494: } 495: }
| $query | "SELECT * FROM `borrowing` WHERE (`user_id` = ?) AND (`date_give_back` IS NULL) ORDER BY RAND LIMIT 4" (100)
|
|---|
...\vendor\nette\database\src\Database\Table\Selection.php:429 source Nette\Database\Table\Selection-> execute ()
419: 420: 421: /** 422: * Counts number of rows. 423: * @param string if it is not provided returns count of result rows, otherwise runs new sql counting query 424: * @return int 425: */ 426: public function count($column = NULL) 427: { 428: if (!$column) { 429: $this->execute(); 430: return count($this->data); 431: } 432: return $this->aggregation("COUNT($column)"); 433: }
inner-code Nette\Database\Table\Selection-> count ()
...\temp\cache\latte\BPIS-app-AdminModule-templates-Admin-default-latte-75db61f291520caf5366a45c93cc430a.php:134 source count (arguments)
124: <?php $iterations++; } } else { ?> 125: <div class="card small"> 126: <div class="card-content"> 127: <span class="card-title activator grey-text text-darken-4">Žádná nadcházející událost</span> 128: </div> 129: </div> 130: <?php } ?> 131: </div> 132: <div class="col s12 m6 l4"> 133: <h5>Aktuální výpůjčky</h5> 134: <?php if (count($borrowing)) { $iterations = 0; foreach ($borrowing as $borrow) { ?> 135: <div class="card medium light-blue"> 136: <div class="card-content"> 137: <span class="card-title activator white-text text-darken-4"><?php echo Latte\Runtime\Filters::escapeHtml($borrow['title'], ENT_NOQUOTES) ?> <i class="mdi-navigation-more-vert right"></i></span> 138: <br><i class="white-text" >Datum zapůjčení: </i>
| $var | Nette\Database\Table\Selection #2dc4 |
|---|
...\vendor\latte\latte\src\Latte\Macros\BlockMacros.php:334 source _lbdd7b21ef76_content (arguments)
324: /** 325: * Calls block. 326: * @return void 327: */ 328: public static function callBlock(\stdClass $context, $name, array $params) 329: { 330: if (empty($context->blocks[$name])) { 331: throw new RuntimeException("Cannot include undefined block '$name'."); 332: } 333: $block = reset($context->blocks[$name]); 334: $block($context, $params); 335: } 336: 337: 338: /**
| $_b | stdClass #1b1d |
|---|---|
| $_args | array (17) |
...\temp\cache\latte\BPIS-app-AdminModule-templates-layoutAdmin-latte-dd13f6669f53146cbbb4003008e8d85d.php:172 source Latte\Macros\BlockMacros:: callBlock (arguments)
162: <div class="container"> 163: <a class="button-collapse top-nav full" data-activates="nav-mobile" href="#"> 164: <i class="mdi-navigation-menu"></i> 165: </a> 166: </div> 167: <?php $_l->tmp = $_control->getComponent("menu"); if ($_l->tmp instanceof Nette\Application\UI\IRenderable) $_l->tmp->redrawControl(NULL, FALSE); $_l->tmp->renderBootstrapNav() ?> 168: </header> 169: <main> 170: <div class="container col s12 m10 l11 "> 171: <div id="<?php echo $_control->getSnippetId('flashMessage') ?>"><?php call_user_func(reset($_b->blocks['_flashMessage']), $_b, $template->getParameters()) ?> 172: </div><?php Latte\Macros\BlockMacros::callBlock($_b, 'content', $template->getParameters()) ?> 173: </div> 174: </main> 175: <footer class="page-footer light-blue lighten-1"> 176: <div class="container">
| $context | stdClass #1b1d |
|---|---|
| $name | "content" (7)
|
| $params | array (17) |
...\vendor\latte\latte\src\Latte\Engine.php:184 source include (arguments)
174: } 175: } 176: flock($handle, LOCK_SH); // holds the lock 177: } 178: 179: call_user_func(function() { 180: foreach (func_get_arg(1) as $__k => $__v) { 181: $$__k = $__v; 182: } 183: unset($__k, $__v); 184: include func_get_arg(0); 185: }, $file, $params); 186: } 187: 188:
| #0 | "C:\xampp\htdocs\BPIS\temp\cache\latte\BPIS-app-AdminModule-templates-layoutAdmin-latte-dd13f6669f53146cbbb4003008e8d85d.php" (123)
|
|---|
inner-code Latte\Engine-> Latte\{closure} (arguments)
| #0 | "C:\xampp\htdocs\BPIS\app/../temp/cache/latte/BPIS-app-AdminModule-templates-layoutAdmin-latte-dd13f6669f53146cbbb4003008e8d85d.php" (130)
|
|---|---|
| #1 | array (18) |
...\vendor\latte\latte\src\Latte\Engine.php:185 source call_user_func (arguments)
175: } 176: flock($handle, LOCK_SH); // holds the lock 177: } 178: 179: call_user_func(function() { 180: foreach (func_get_arg(1) as $__k => $__v) { 181: $$__k = $__v; 182: } 183: unset($__k, $__v); 184: include func_get_arg(0); 185: }, $file, $params); 186: } 187: 188: 189: /**
| $function_name | Closure #4dc1 |
|---|---|
| $parmeter | "C:\xampp\htdocs\BPIS\app/../temp/cache/latte/BPIS-app-AdminModule-templates-layoutAdmin-latte-dd13f6669f53146cbbb4003008e8d85d.php" (130)
|
| $... | array (18) |
...\vendor\latte\latte\src\Latte\Engine.php:91 source Latte\Engine-> loadCacheFile (arguments)
81: private $baseTemplateClass = 'Latte\Template'; 82: 83: 84: /** 85: * Renders template to output. 86: * @return void 87: */ 88: public function render($name, array $params = array()) 89: { 90: $template = new $this->baseTemplateClass($params, $this->filters, $this, $name); 91: $this->loadCacheFile($name, $template->getParameters()); 92: } 93: 94: 95: /**
| $name | "C:\xampp\htdocs\BPIS\app\AdminModule/templates/@layoutAdmin.latte" (65)
|
|---|---|
| $params | array (18) |
...\vendor\latte\latte\src\Latte\Template.php:100 source Latte\Engine-> render (arguments)
90: 91: 92: /** 93: * Renders template. 94: * @return void 95: * @internal 96: */ 97: public function renderChildTemplate($name, array $params = array()) 98: { 99: $name = $this->engine->getLoader()->getChildName($name, $this->name); 100: $this->engine->render($name, $params); 101: } 102: 103: 104: /**
| $name | "C:\xampp\htdocs\BPIS\app\AdminModule/templates/@layoutAdmin.latte" (65)
|
|---|---|
| $params | array (18) |
...\temp\cache\latte\BPIS-app-AdminModule-templates-Admin-default-latte-75db61f291520caf5366a45c93cc430a.php:199 source Latte\Template-> renderChildTemplate (arguments)
189: // prolog Nette\Bridges\ApplicationLatte\UIMacros 190: 191: // snippets support 192: if (empty($_l->extends) && !empty($_control->snippetMode)) { 193: return Nette\Bridges\ApplicationLatte\UIMacros::renderSnippets($_control, $_b, get_defined_vars()); 194: } 195: 196: // 197: // main template 198: // 199: if ($_l->extends) { ob_end_clean(); return $template->renderChildTemplate($_l->extends, get_defined_vars()); } 200: call_user_func(reset($_b->blocks['headerH1']), $_b, get_defined_vars()) ?> 201: 202: <?php call_user_func(reset($_b->blocks['scripts']), $_b, get_defined_vars()) ; call_user_func(reset($_b->blocks['content']), $_b, get_defined_vars()) ;
| $name | "C:\xampp\htdocs\BPIS\app\AdminModule/templates/@layoutAdmin.latte" (65)
|
|---|---|
| $params | array (18) |
...\vendor\latte\latte\src\Latte\Engine.php:184 source include (arguments)
174: } 175: } 176: flock($handle, LOCK_SH); // holds the lock 177: } 178: 179: call_user_func(function() { 180: foreach (func_get_arg(1) as $__k => $__v) { 181: $$__k = $__v; 182: } 183: unset($__k, $__v); 184: include func_get_arg(0); 185: }, $file, $params); 186: } 187: 188:
| #0 | "C:\xampp\htdocs\BPIS\temp\cache\latte\BPIS-app-AdminModule-templates-Admin-default-latte-75db61f291520caf5366a45c93cc430a.php" (125)
|
|---|
inner-code Latte\Engine-> Latte\{closure} (arguments)
| #0 | "C:\xampp\htdocs\BPIS\app/../temp/cache/latte/BPIS-app-AdminModule-templates-Admin-default-latte-75db61f291520caf5366a45c93cc430a.php" (132)
|
|---|---|
| #1 | array (15) |
...\vendor\latte\latte\src\Latte\Engine.php:185 source call_user_func (arguments)
175: } 176: flock($handle, LOCK_SH); // holds the lock 177: } 178: 179: call_user_func(function() { 180: foreach (func_get_arg(1) as $__k => $__v) { 181: $$__k = $__v; 182: } 183: unset($__k, $__v); 184: include func_get_arg(0); 185: }, $file, $params); 186: } 187: 188: 189: /**
| $function_name | Closure #533f |
|---|---|
| $parmeter | "C:\xampp\htdocs\BPIS\app/../temp/cache/latte/BPIS-app-AdminModule-templates-Admin-default-latte-75db61f291520caf5366a45c93cc430a.php" (132)
|
| $... | array (15) |
...\vendor\latte\latte\src\Latte\Engine.php:91 source Latte\Engine-> loadCacheFile (arguments)
81: private $baseTemplateClass = 'Latte\Template'; 82: 83: 84: /** 85: * Renders template to output. 86: * @return void 87: */ 88: public function render($name, array $params = array()) 89: { 90: $template = new $this->baseTemplateClass($params, $this->filters, $this, $name); 91: $this->loadCacheFile($name, $template->getParameters()); 92: } 93: 94: 95: /**
| $name | "C:\xampp\htdocs\BPIS\app\AdminModule/templates/Admin/default.latte" (66)
|
|---|---|
| $params | array (15) |
...\vendor\nette\application\src\Bridges\ApplicationLatte\Template.php:52 source Latte\Engine-> render (arguments)
42: return $this->latte; 43: } 44: 45: 46: /** 47: * Renders template to output. 48: * @return void 49: */ 50: public function render($file = NULL, array $params = array()) 51: { 52: $this->latte->render($file ?: $this->file, $params + $this->params); 53: } 54: 55: 56: /**
| $name | "C:\xampp\htdocs\BPIS\app\AdminModule/templates/Admin/default.latte" (66)
|
|---|---|
| $params | array (14) |
...\vendor\nette\application\src\Application\Responses\TextResponse.php:51 source Nette\Bridges\ApplicationLatte\Template-> render ()
41: } 42: 43: 44: /** 45: * Sends response to output. 46: * @return void 47: */ 48: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) 49: { 50: if ($this->source instanceof Nette\Application\UI\ITemplate || $this->source instanceof Nette\Templating\ITemplate) { 51: $this->source->render(); 52: 53: } else { 54: echo $this->source; 55: }
...\vendor\nette\application\src\Application\Application.php:156 source Nette\Application\Responses\TextResponse-> send (arguments)
146: 147: $this->presenter = $this->presenterFactory->createPresenter($request->getPresenterName()); 148: $this->onPresenter($this, $this->presenter); 149: $response = $this->presenter->run($request); 150: 151: if ($response instanceof Responses\ForwardResponse) { 152: $this->processRequest($response->getRequest()); 153: 154: } elseif ($response) { 155: $this->onResponse($this, $response); 156: $response->send($this->httpRequest, $this->httpResponse); 157: } 158: } 159: 160:
| $httpRequest | Nette\Http\Request #ef9d |
|---|---|
| $httpResponse | Nette\Http\Response #262d |
...\vendor\nette\application\src\Application\Application.php:88 source Nette\Application\Application-> processRequest (arguments)
78: 79: 80: /** 81: * Dispatch a HTTP request to a front controller. 82: * @return void 83: */ 84: public function run() 85: { 86: try { 87: $this->onStartup($this); 88: $this->processRequest($this->createInitialRequest()); 89: $this->onShutdown($this); 90: 91: } catch (\Exception $e) { 92: $this->onError($this, $e);
| $request | Nette\Application\Request #651b |
|---|
...\www\index.php:5 source Nette\Application\Application-> run ()
1: <?php 2: 3: $container = require __DIR__ . '/../app/bootstrap.php'; 4: 5: $container->getService('application')->run(); 6:
array (2)0 => Nette\Application\Request #651b| method private => "GET" (3) | flags private => array (1)1 => Nette\Application\Request #7ffd| | secured => FALSE| name private => "Admin:Admin" (11) | params private => array (2)| | action => "default" (7) | | id => NULL| post private => array () | files private => array ()| method private => "FORWARD" (7) | flags private => array () | name private => "Front:Error" (11) | params private => array (3)| | exception => PDOException #70aa| post private => array () | files private => array ()| | | message protected => "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'RAND' in 'order clause'" (79) | | | string private => "exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'RAND' in 'order clause'' in C:\xampp\htdocs\BPIS\vendor ... " (3478) | | | code protected => "42S22" (5) | | | file protected => "C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\ResultSet.php" (69) | | | line protected => 68 | | | trace private => array (24) [ ... ] | | | previous private => NULL | | | errorInfo => array (3) [ ... ] | | | queryString => "SELECT * FROM `borrowing` WHERE (`user_id` = 1) AND (`date_give_back` IS NULL) ORDER BY RAND LIMIT 4" (100)| | request => Nette\Application\Request #651b| | | method private => "GET" (3) | | | flags private => array (1) [ ... ] | | | name private => "Admin:Admin" (11) | | | params private => array (2) [ ... ] | | | post private => array () | | | files private => array ()| | action => "default" (7)
FrontModule\ErrorPresenter #412dmenuFactory protected => Smf\Menu\Control\Factory #79b3| menuFactory private => Knp\Menu\MenuFactory #ca90frontpageManager protected => App\Model\FrontpageManager #3ec2| | extensions private => array (2)| rendererManager private => Smf\Menu\Renderer\Manager #41b1| | | 0 => array (1) [ ... ] | | | "-10" => array (1) [ ... ]| | sorted private => array (2)| | | 0 => Smf\Menu\MenuExtension #ce9e | | | 1 => Knp\Menu\Factory\CoreExtension #cb56| | renderers private => array (2)| | | bootstrapNav => Smf\Menu\Renderer\BootstrapNavRenderer #22b6 { ... } | | | list => Smf\Menu\Renderer\ListRenderer #f278 { ... }| | defaultRenderer private => "list" (4)| connection protected => Nette\Database\Context #e7d6configManager private => App\Model\ConfigManager #9d6a| | connection private => Nette\Database\Connection #373e| | | onConnect => NULL | | | onQuery => array (1) [ ... ] | | | params private => array (3) [ ... ] | | | options private => array (1) [ ... ] | | | driver private => Nette\Database\Drivers\MySqlDriver #29ad { ... } | | | preprocessor private => Nette\Database\SqlPreprocessor #28fe { ... } | | | pdo private => PDO #c1c2| | reflection private => Nette\Database\Reflection\DiscoveredReflection #0c12| | | connection protected => Nette\Database\Connection #373e { ... } | | | cache protected => Nette\Caching\Cache #871f { ... } | | | structure protected => array (3) [ ... ] | | | loadedStructure protected => array (3) [ ... ]| | cacheStorage private => Nette\Caching\Storages\FileStorage #a30d| | | dir private => "C:\xampp\htdocs\BPIS\temp\cache" (31) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #9138 { ... } | | | locks private => NULL| | preprocessor private => Nette\Database\SqlPreprocessor #31d1| | | connection private => Nette\Database\Connection #373e { ... } | | | driver private => Nette\Database\Drivers\MySqlDriver #29ad { ... } | | | params private => array (2) [ ... ] | | | remaining private => array () | | | counter private => 2 | | | arrayMode private => "order" (5) | | | arrayModes private => array (7) [ ... ]| connection protected => Nette\Database\Context #e7d6invalidLinkMode => 2 onShutdown => NULL request private => Nette\Application\Request #7ffd| | connection private => Nette\Database\Connection #373e| | | onConnect => NULL | | | onQuery => array (1) [ ... ] | | | params private => array (3) [ ... ] | | | options private => array (1) [ ... ] | | | driver private => Nette\Database\Drivers\MySqlDriver #29ad { ... } | | | preprocessor private => Nette\Database\SqlPreprocessor #28fe { ... } | | | pdo private => PDO #c1c2| | reflection private => Nette\Database\Reflection\DiscoveredReflection #0c12| | | connection protected => Nette\Database\Connection #373e { ... } | | | cache protected => Nette\Caching\Cache #871f { ... } | | | structure protected => array (3) [ ... ] | | | loadedStructure protected => array (3) [ ... ]| | cacheStorage private => Nette\Caching\Storages\FileStorage #a30d| | | dir private => "C:\xampp\htdocs\BPIS\temp\cache" (31) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #9138 { ... } | | | locks private => NULL| | preprocessor private => Nette\Database\SqlPreprocessor #31d1| | | connection private => Nette\Database\Connection #373e { ... } | | | driver private => Nette\Database\Drivers\MySqlDriver #29ad { ... } | | | params private => array (2) [ ... ] | | | remaining private => array () | | | counter private => 2 | | | arrayMode private => "order" (5) | | | arrayModes private => array (7) [ ... ]| method private => "FORWARD" (7) | flags private => array () | name private => "Front:Error" (11) | params private => array (3)response private => NULL autoCanonicalize => TRUE absoluteUrls => FALSE globalParams private => array () globalState private => NULL globalStateSinces private => NULL action private => "default" (7) view private => "500" (3) layout private => "layout" (6) payload private => stdClass #1fa4 signalReceiver private => "" signal private => NULL ajaxMode private => FALSE startupCheck private => TRUE lastCreatedRequest private => NULL lastCreatedRequestFlag private => NULL context private => SystemContainer #a74e| | exception => PDOException #70aa| post private => array () | files private => array ()| | | message protected => "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'RAND' in 'order clause'" (79) | | | string private => "exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'RAND' in 'order clause'' in C:\xampp\htdocs\BPIS\vendor ... " (3478) | | | code protected => "42S22" (5) | | | file protected => "C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\ResultSet.php" (69) | | | line protected => 68 | | | trace private => array (24) [ ... ] | | | previous private => NULL | | | errorInfo => array (3) [ ... ] | | | queryString => "SELECT * FROM `borrowing` WHERE (`user_id` = 1) AND (`date_give_back` IS NULL) ORDER BY RAND LIMIT 4" (100)| | request => Nette\Application\Request #651b| | | method private => "GET" (3) | | | flags private => array (1) [ ... ] | | | name private => "Admin:Admin" (11) | | | params private => array (2) [ ... ] | | | post private => array () | | | files private => array ()| | action => "default" (7)| meta protected => array (2)httpRequest private => Nette\Http\Request #ef9d| | types => array (58)| parameters => array (8)| | | "nette\object" => array (25) [ ... ] | | | "nette\bridges\framework\netteaccessor" => array (1) [ ... ] | | | "nette\caching\storages\ijournal" => array (1) [ ... ] | | | "nette\caching\storages\filejournal" => array (1) [ ... ] | | | "nette\caching\istorage" => array (1) [ ... ] | | | "nette\caching\storages\filestorage" => array (1) [ ... ] | | | "nette\http\requestfactory" => array (1) [ ... ] | | | "nette\http\irequest" => array (1) [ ... ] | | | "nette\http\request" => array (1) [ ... ] | | | "nette\http\iresponse" => array (1) [ ... ] | | | "nette\http\response" => array (1) [ ... ] | | | "nette\http\context" => array (1) [ ... ] | | | "nette\http\session" => array (1) [ ... ] | | | "nette\security\iuserstorage" => array (1) [ ... ] | | | "nette\http\userstorage" => array (1) [ ... ] | | | "nette\security\user" => array (1) [ ... ] | | | "nette\application\application" => array (1) [ ... ] | | | "nette\application\ipresenterfactory" => array (1) [ ... ] | | | "nette\application\presenterfactory" => array (1) [ ... ] | | | "nette\application\irouter" => array (1) [ ... ] | | | "nette\mail\imailer" => array (1) [ ... ] | | | "nette\mail\sendmailmailer" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\ilattefactory" => array (1) [ ... ] | | | "nette\application\ui\itemplatefactory" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\templatefactory" => array (1) [ ... ] | | | "nette\database\connection" => array (1) [ ... ] | | | "nette\database\context" => array (1) [ ... ] | | | "knp\menu\factory\extensioninterface" => array (1) [ ... ] | | | "smf\menu\menuextension" => array (1) [ ... ] | | | "knp\menu\factoryinterface" => array (1) [ ... ] | | | "knp\menu\menufactory" => array (1) [ ... ] | | | "smf\menu\renderer\imanager" => array (1) [ ... ] | | | "smf\menu\renderer\manager" => array (1) [ ... ] | | | "smf\menu\control\factory" => array (1) [ ... ] | | | "smf\menu\matcher\imatcher" => array (1) [ ... ] | | | "knp\menu\matcher\matcherinterface" => array (1) [ ... ] | | | "smf\menu\matcher\matcher" => array (1) [ ... ] | | | "knp\menu\renderer\renderer" => array (2) [ ... ] | | | "smf\menu\renderer\irenderer" => array (2) [ ... ] | | | "knp\menu\renderer\rendererinterface" => array (2) [ ... ] | | | "smf\menu\renderer\listrenderer" => array (2) [ ... ] | | | "smf\menu\renderer\bootstrapnavrenderer" => array (1) [ ... ] | | | "smf\menu\matcher\voter\ivoter" => array (1) [ ... ] | | | "knp\menu\matcher\voter\voterinterface" => array (1) [ ... ] | | | "smf\menu\matcher\voter\presentervoter" => array (1) [ ... ] | | | "app\model\basemanager" => array (7) [ ... ] | | | "app\model\borrowingmanager" => array (1) [ ... ] | | | "app\model\configmanager" => array (1) [ ... ] | | | "app\model\eventmanager" => array (1) [ ... ] | | | "app\model\frontpagemanager" => array (1) [ ... ] | | | "app\model\recordmanager" => array (1) [ ... ] | | | "app\model\termmanager" => array (1) [ ... ] | | | "nette\security\iauthenticator" => array (1) [ ... ] | | | "app\model\usermanager" => array (1) [ ... ] | | | "app\routerfactory" => array (1) [ ... ] | | | ieventplanningcontrolfactory => array (1) [ ... ] | | | itimelinecontrolfactory => array (1) [ ... ] | | | "nette\di\container" => array (1) [ ... ]| | tags => array (2)| | | menuVoter => array (1) [ ... ] | | | menuRenderer => array (2) [ ... ]| | appDir => "C:\xampp\htdocs\BPIS\app" (24) | | wwwDir => "C:\xampp\htdocs\BPIS\www" (24) | | debugMode => TRUE | | productionMode => FALSE | | environment => "development" (11) | | consoleMode => FALSE | | container => array (3)| registry private => array (33)| | | class => "SystemContainer" (15) | | | parent => "Nette\DI\Container" (18) | | | accessors => TRUE| | tempDir => "C:\xampp\htdocs\BPIS\app/../temp" (32)| | "nette.httpRequestFactory" => Nette\Http\RequestFactory #15fb| creating private => array ()| | | urlFilters => array (2) [ ... ] | | | binary private => FALSE | | | proxies private => array ()| | httpRequest => Nette\Http\Request #ef9d| | | method private => "GET" (3) | | | url private => Nette\Http\UrlScript #0d14 { ... } | | | query private => array () | | | post private => array () | | | files private => array () | | | cookies private => array (7) [ ... ] | | | headers private => array (10) [ ... ] | | | remoteAddress private => "::1" (3) | | | remoteHost private => NULL | | | rawBody private => NULL| | httpResponse => Nette\Http\Response #262d| | | cookieDomain => "" | | | cookiePath => "/" | | | cookieSecure => FALSE | | | cookieHttpOnly => TRUE | | | warnOnBuffer => FALSE | | | code private => 200| | session => Nette\Http\Session #bafd| | | regenerated private => NULL | | | options private => array (14) [ ... ] | | | request private => Nette\Http\Request #ef9d { ... } | | | response private => Nette\Http\Response #262d { ... }| | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #9138| | | file private => "C:\xampp\htdocs\BPIS\app/../temp/btfj.dat" (41) | | | handle private => NULL | | | lastNode private => 2 | | | processIdentifier private => NULL | | | nodeCache private => array () | | | nodeChanged private => array () | | | toCommit private => array () | | | deletedLinks private => array () | | | dataNodeFreeSpace private => array ()| | cacheStorage => Nette\Caching\Storages\FileStorage #a30d| | | dir private => "C:\xampp\htdocs\BPIS\temp\cache" (31) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #9138 { ... } | | | locks private => NULL| | "nette.presenterFactory" => Nette\Application\PresenterFactory #dd33| | | caseSensitive => FALSE | | | mapping private => array (2) [ ... ] | | | baseDir private => "C:\xampp\htdocs\BPIS\app" (24) | | | cache private => array (10) [ ... ] | | | container private => SystemContainer #a74e { RECURSION }| | "nette.database.default" => Nette\Database\Connection #373e| | | onConnect => NULL | | | onQuery => array (1) [ ... ] | | | params private => array (3) [ ... ] | | | options private => array (1) [ ... ] | | | driver private => Nette\Database\Drivers\MySqlDriver #29ad { ... } | | | preprocessor private => Nette\Database\SqlPreprocessor #28fe { ... } | | | pdo private => PDO #c1c2| | "nette.database.default.context" => Nette\Database\Context #e7d6| | | connection private => Nette\Database\Connection #373e { ... } | | | reflection private => Nette\Database\Reflection\DiscoveredReflection #0c12 { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #a30d { ... } | | | preprocessor private => Nette\Database\SqlPreprocessor #31d1 { ... }| | 33_App_Model_FrontpageManager => App\Model\FrontpageManager #3ec2| | | connection protected => Nette\Database\Context #e7d6 { ... }| | 37_App_RouterFactory => App\RouterFactory #7a2c| | | fronpageManager private => App\Model\FrontpageManager #3ec2 { ... }| | router => Nette\Application\Routers\RouteList #a4aa| | | cachedRoutes private => array (2) [ ... ] | | | module private => "" | | | list private => array (4) [ ... ]| | application => Nette\Application\Application #703e| | | catchExceptions => TRUE | | | errorPresenter => "Front:Error" (11) | | | onStartup => NULL | | | onShutdown => NULL | | | onRequest => NULL | | | onPresenter => NULL | | | onResponse => NULL | | | onError => NULL | | | requests private => array (2) [ ... ] | | | presenter private => FrontModule\ErrorPresenter #412d { RECURSION } | | | httpRequest private => Nette\Http\Request #ef9d { ... } | | | httpResponse private => Nette\Http\Response #262d { ... } | | | presenterFactory private => Nette\Application\PresenterFactory #dd33 { ... } | | | router private => Nette\Application\Routers\RouteList #a4aa { ... }| | 32_App_Model_EventManager => App\Model\EventManager #cf5a| | | connection protected => Nette\Database\Context #e7d6 { ... }| | 35_App_Model_TermManager => App\Model\TermManager #5bf7| | | connection protected => Nette\Database\Context #e7d6 { ... }| | 36_App_Model_UserManager => App\Model\UserManager #e38e| | | connection protected => Nette\Database\Context #e7d6 { ... }| | 30_App_Model_BorrowingManager => App\Model\BorrowingManager #2f2b| | | connection protected => Nette\Database\Context #e7d6 { ... }| | 34_App_Model_RecordManager => App\Model\RecordManager #c01a| | | connection protected => Nette\Database\Context #e7d6 { ... }| | container => SystemContainer #a74e { RECURSION } | | "nette.userStorage" => Nette\Http\UserStorage #a3a0| | | namespace private => "" | | | sessionHandler private => Nette\Http\Session #bafd { ... } | | | sessionSection private => Nette\Http\SessionSection #aa7e { ... }| | user => Nette\Security\User #5fe3| | | guestRole => "guest" (5) | | | authenticatedRole => "authenticated" (13) | | | onLoggedIn => NULL | | | onLoggedOut => NULL | | | storage private => Nette\Http\UserStorage #a3a0 { ... } | | | authenticator private => App\Model\UserManager #e38e { ... } | | | authorizator private => NULL| | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #6a76| | | container private => SystemContainer #a74e { RECURSION }| | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #36c8| | | latteFactory private => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #6a76 { ... } | | | httpRequest private => Nette\Http\Request #ef9d { ... } | | | httpResponse private => Nette\Http\Response #262d { ... } | | | user private => Nette\Security\User #5fe3 { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #a30d { ... }| | "smfMenu.extension" => Smf\Menu\MenuExtension #ce9e | | "smfMenu.factory" => Knp\Menu\MenuFactory #ca90| | | extensions private => array (2) [ ... ] | | | sorted private => array (2) [ ... ]| | "smfMenu.presenterVoter" => Smf\Menu\Matcher\Voter\PresenterVoter #69b5| | | parentControl protected => NULL| | "smfMenu.matcher" => Smf\Menu\Matcher\Matcher #776f| | | parentControl protected => NULL | | | cache private => SplObjectStorage #d8ac | | | voters private => array (1) [ ... ]| | "smfMenu.renderer_bootstrapNav" => Smf\Menu\Renderer\BootstrapNavRenderer #22b6| | | matcher protected => Smf\Menu\Matcher\Matcher #776f { ... } | | | defaultOptions protected => array (9) [ ... ] | | | parentControl protected => NULL | | | charset protected => "UTF-8" (5)| | "smfMenu.renderer_list" => Smf\Menu\Renderer\ListRenderer #f278| | | matcher protected => Smf\Menu\Matcher\Matcher #776f { ... } | | | defaultOptions protected => array (9) [ ... ] | | | parentControl protected => NULL | | | charset protected => "UTF-8" (5)| | "smfMenu.rendererManager" => Smf\Menu\Renderer\Manager #41b1| | | renderers private => array (2) [ ... ] | | | defaultRenderer private => "list" (4)| | "smfMenu.controlFactory" => Smf\Menu\Control\Factory #79b3| | | menuFactory private => Knp\Menu\MenuFactory #ca90 { ... } | | | rendererManager private => Smf\Menu\Renderer\Manager #41b1 { ... }| | 39_ITimeLineControlFactory => SystemContainer_ITimeLineControlFactoryImpl_39_ITimeLineControlFactory #6f24| | | container private => SystemContainer #a74e { RECURSION }| | 31_App_Model_ConfigManager => App\Model\ConfigManager #9d6a| | | connection protected => Nette\Database\Context #e7d6 { ... }| method private => "GET" (3) | url private => Nette\Http\UrlScript #0d14httpResponse private => Nette\Http\Response #262d| | scriptPath private => "/BPIS/www/" (10) | | scheme private => "http" (4) | | user private => "" | | pass private => "" | | host private => "localhost" (9) | | port private => 80 | | path private => "/BPIS/www/admin/" (16) | | query private => "" | | fragment private => ""| query private => array () | post private => array () | files private => array () | cookies private => array (7)| | _ga => "GA1.1.995278083.1412259016" (26) | | PHPSESSID => "92ukan969rvu0e5s0ebrd05qi3" (26) | | "tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel" => "" | | "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel" => "" | | "tracy-debug-panel-Tracy-Debugger-dumps" => "910:554" (7) | | "tracy-debug-bar" => "3:0" (3) | | "nette-browser" => "g07tc9etp7" (10)| headers private => array (10)| | host => "localhost" (9) | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" (72) | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63) | | "accept-language" => "cs,en-us;q=0.7,en;q=0.3" (23) | | "accept-encoding" => "gzip, deflate" (13) | | dnt => "1" | | referer => "http://localhost/BPIS/www/admin/event/detail/32" (47) | | cookie => "_ga=GA1.1.995278083.1412259016; PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel=; tracy-debug-pane ... " (291) | | connection => "keep-alive" (10) | | "cache-control" => "max-age=0" (9)| remoteAddress private => "::1" (3) | remoteHost private => NULL | rawBody private => NULL| cookieDomain => "" | cookiePath => "/" | cookieSecure => FALSE | cookieHttpOnly => TRUE | warnOnBuffer => FALSE | code private => 200session private => Nette\Http\Session #bafd| regenerated private => NULL | options private => array (14)presenterFactory private => Nette\Application\PresenterFactory #dd33| | gc_maxlifetime => 1209600 | | cookie_lifetime => 1209600 | | referer_check => "" | | use_cookies => 1 | | use_only_cookies => 1 | | use_trans_sid => 0 | | cookie_path => "/" | | cookie_domain => "" | | cookie_secure => FALSE | | cookie_httponly => TRUE | | cache_limiter => NULL | | cache_expire => NULL | | hash_function => NULL | | hash_bits_per_character => NULL| request private => Nette\Http\Request #ef9d| | method private => "GET" (3) | | url private => Nette\Http\UrlScript #0d14| response private => Nette\Http\Response #262d| | | scriptPath private => "/BPIS/www/" (10) | | | scheme private => "http" (4) | | | user private => "" | | | pass private => "" | | | host private => "localhost" (9) | | | port private => 80 | | | path private => "/BPIS/www/admin/" (16) | | | query private => "" | | | fragment private => ""| | query private => array () | | post private => array () | | files private => array () | | cookies private => array (7)| | | _ga => "GA1.1.995278083.1412259016" (26) | | | PHPSESSID => "92ukan969rvu0e5s0ebrd05qi3" (26) | | | "tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel" => "" | | | "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel" => "" | | | "tracy-debug-panel-Tracy-Debugger-dumps" => "910:554" (7) | | | "tracy-debug-bar" => "3:0" (3) | | | "nette-browser" => "g07tc9etp7" (10)| | headers private => array (10)| | | host => "localhost" (9) | | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" (72) | | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63) | | | "accept-language" => "cs,en-us;q=0.7,en;q=0.3" (23) | | | "accept-encoding" => "gzip, deflate" (13) | | | dnt => "1" | | | referer => "http://localhost/BPIS/www/admin/event/detail/32" (47) | | | cookie => "_ga=GA1.1.995278083.1412259016; PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel=; tracy-debug-pane ... " (291) | | | connection => "keep-alive" (10) | | | "cache-control" => "max-age=0" (9)| | remoteAddress private => "::1" (3) | | remoteHost private => NULL | | rawBody private => NULL| | cookieDomain => "" | | cookiePath => "/" | | cookieSecure => FALSE | | cookieHttpOnly => TRUE | | warnOnBuffer => FALSE | | code private => 200| caseSensitive => FALSE | mapping private => array (2)router private => Nette\Application\Routers\RouteList #a4aa| | "*" => array (3)| baseDir private => "C:\xampp\htdocs\BPIS\app" (24) | cache private => array (10)| | | 0 => "" | | | 1 => "*Module\" (8) | | | 2 => "*Presenter" (10)| | Nette => array (3)| | | 0 => "NetteModule\" (12) | | | 1 => "*\" (2) | | | 2 => "*Presenter" (10)| | "Admin:Admin" => array (2)| container private => SystemContainer #a74e| | | 0 => "AdminModule\AdminPresenter" (26) | | | 1 => "Admin:Admin" (11)| | "Front:Homepage" => array (2)| | | 0 => "FrontModule\HomepagePresenter" (29) | | | 1 => "Front:Homepage" (14)| | "Admin:User" => array (2)| | | 0 => "AdminModule\UserPresenter" (25) | | | 1 => "Admin:User" (10)| | "Front:Sign" => array (2)| | | 0 => "FrontModule\SignPresenter" (25) | | | 1 => "Front:Sign" (10)| | "Admin:Frontpage" => array (2)| | | 0 => "AdminModule\FrontPagePresenter" (30) | | | 1 => "Admin:FrontPage" (15)| | "Admin:Config" => array (2)| | | 0 => "AdminModule\ConfigPresenter" (27) | | | 1 => "Admin:Config" (12)| | "Admin:Borrowing" => array (2)| | | 0 => "AdminModule\BorrowingPresenter" (30) | | | 1 => "Admin:Borrowing" (15)| | "Admin:Record" => array (2)| | | 0 => "AdminModule\RecordPresenter" (27) | | | 1 => "Admin:Record" (12)| | "Admin:Event" => array (2)| | | 0 => "AdminModule\EventPresenter" (26) | | | 1 => "Admin:Event" (11)| | "Front:Error" => array (2)| | | 0 => "FrontModule\ErrorPresenter" (26) | | | 1 => "Front:Error" (11)| | meta protected => array (2)| | | types => array (58) [ ... ] | | | tags => array (2) [ ... ]| | parameters => array (8)| | | appDir => "C:\xampp\htdocs\BPIS\app" (24) | | | wwwDir => "C:\xampp\htdocs\BPIS\www" (24) | | | debugMode => TRUE | | | productionMode => FALSE | | | environment => "development" (11) | | | consoleMode => FALSE | | | container => array (3) [ ... ] | | | tempDir => "C:\xampp\htdocs\BPIS\app/../temp" (32)| | registry private => array (33)| | | "nette.httpRequestFactory" => Nette\Http\RequestFactory #15fb { ... } | | | httpRequest => Nette\Http\Request #ef9d { ... } | | | httpResponse => Nette\Http\Response #262d { ... } | | | session => Nette\Http\Session #bafd { ... } | | | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #9138 { ... } | | | cacheStorage => Nette\Caching\Storages\FileStorage #a30d { ... } | | | "nette.presenterFactory" => Nette\Application\PresenterFactory #dd33 { RECURSION } | | | "nette.database.default" => Nette\Database\Connection #373e { ... } | | | "nette.database.default.context" => Nette\Database\Context #e7d6 { ... } | | | 33_App_Model_FrontpageManager => App\Model\FrontpageManager #3ec2 { ... } | | | 37_App_RouterFactory => App\RouterFactory #7a2c { ... } | | | router => Nette\Application\Routers\RouteList #a4aa { ... } | | | application => Nette\Application\Application #703e { ... } | | | 32_App_Model_EventManager => App\Model\EventManager #cf5a { ... } | | | 35_App_Model_TermManager => App\Model\TermManager #5bf7 { ... } | | | 36_App_Model_UserManager => App\Model\UserManager #e38e { ... } | | | 30_App_Model_BorrowingManager => App\Model\BorrowingManager #2f2b { ... } | | | 34_App_Model_RecordManager => App\Model\RecordManager #c01a { ... } | | | container => SystemContainer #a74e { RECURSION } | | | "nette.userStorage" => Nette\Http\UserStorage #a3a0 { ... } | | | user => Nette\Security\User #5fe3 { ... } | | | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #6a76 { ... } | | | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #36c8 { ... } | | | "smfMenu.extension" => Smf\Menu\MenuExtension #ce9e | | | "smfMenu.factory" => Knp\Menu\MenuFactory #ca90 { ... } | | | "smfMenu.presenterVoter" => Smf\Menu\Matcher\Voter\PresenterVoter #69b5 { ... } | | | "smfMenu.matcher" => Smf\Menu\Matcher\Matcher #776f { ... } | | | "smfMenu.renderer_bootstrapNav" => Smf\Menu\Renderer\BootstrapNavRenderer #22b6 { ... } | | | "smfMenu.renderer_list" => Smf\Menu\Renderer\ListRenderer #f278 { ... } | | | "smfMenu.rendererManager" => Smf\Menu\Renderer\Manager #41b1 { ... } | | | "smfMenu.controlFactory" => Smf\Menu\Control\Factory #79b3 { ... } | | | 39_ITimeLineControlFactory => SystemContainer_ITimeLineControlFactoryImpl_39_ITimeLineControlFactory #6f24 { ... } | | | 31_App_Model_ConfigManager => App\Model\ConfigManager #9d6a { ... }| | creating private => array ()| cachedRoutes private => array (2)user private => Nette\Security\User #5fe3| | "*" => array (2)| module private => "" | list private => array (4)| | | 0 => Nette\Application\Routers\Route #dd8e { ... } | | | 1 => Nette\Application\Routers\Route #36d4 { ... }| | "front:homepage" => array (4)| | | 0 => Nette\Application\Routers\Route #67b1 { ... } | | | 1 => Nette\Application\Routers\Route #dd8e { ... } | | | 2 => Nette\Application\Routers\Route #ff3b { ... } | | | 3 => Nette\Application\Routers\Route #36d4 { ... }| | 0 => Nette\Application\Routers\Route #67b1| | | mask private => "sitemap.xml" (11) | | | sequence private => array (1) [ ... ] | | | re private => "#sitemap\.xml/?\z#Aiu" (21) | | | aliases private => array () | | | metadata private => array (2) [ ... ] | | | xlat private => array () | | | type private => 3 | | | flags private => 0| | 1 => Nette\Application\Routers\Route #dd8e| | | mask private => "admin/<presenter>/<action>/<id>" (31) | | | sequence private => array (7) [ ... ] | | | re private => "#admin/(?:(?P<p0>(?U)[a-z][a-z0-9.-]*)/(?:(?P<p5>(?U)[a-z][a-z0-9-]*)/(?:(?P<p10>(?U)[^/]+))?)?)?/?\z#Aiu" (105) | | | aliases private => array (3) [ ... ] | | | metadata private => array (4) [ ... ] | | | xlat private => array () | | | type private => 3 | | | flags private => 0| | 2 => Nette\Application\Routers\Route #ff3b| | | mask private => "<id>" (4) | | | sequence private => array (3) [ ... ] | | | re private => "#(?P<p0>(?U)[^/]+)/?\z#Aiu" (26) | | | aliases private => array (1) [ ... ] | | | metadata private => array (4) [ ... ] | | | xlat private => array () | | | type private => 3 | | | flags private => 0| | 3 => Nette\Application\Routers\Route #36d4| | | mask private => "<presenter>/<action>/<id>" (25) | | | sequence private => array (7) [ ... ] | | | re private => "#(?:(?P<p0>(?U)[a-z][a-z0-9.-]*)/(?:(?P<p5>(?U)[a-z][a-z0-9-]*)/(?:(?P<p10>(?U)[^/]+))?)?)?/?\z#Aiu" (99) | | | aliases private => array (3) [ ... ] | | | metadata private => array (4) [ ... ] | | | xlat private => array () | | | type private => 3 | | | flags private => 0| guestRole => "guest" (5) | authenticatedRole => "authenticated" (13) | onLoggedIn => NULL | onLoggedOut => NULL | storage private => Nette\Http\UserStorage #a3a0templateFactory private => Nette\Bridges\ApplicationLatte\TemplateFactory #36c8| | namespace private => "" | | sessionHandler private => Nette\Http\Session #bafd| authenticator private => App\Model\UserManager #e38e| | | regenerated private => NULL | | | options private => array (14) [ ... ] | | | request private => Nette\Http\Request #ef9d { ... } | | | response private => Nette\Http\Response #262d { ... }| | sessionSection private => Nette\Http\SessionSection #aa7e| | | session private => Nette\Http\Session #bafd { ... } | | | name private => "Nette.Http.UserStorage/" (23) | | | data private => array (9) [ ... ] | | | meta private => array (2) [ ... ] | | | warnOnUndefined => FALSE| | connection protected => Nette\Database\Context #e7d6| authorizator private => NULL| | | connection private => Nette\Database\Connection #373e { ... } | | | reflection private => Nette\Database\Reflection\DiscoveredReflection #0c12 { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #a30d { ... } | | | preprocessor private => Nette\Database\SqlPreprocessor #31d1 { ... }| latteFactory private => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #6a76template private => Nette\Bridges\ApplicationLatte\Template #b36b| | container private => SystemContainer #a74e| httpRequest private => Nette\Http\Request #ef9d| | | meta protected => array (2) [ ... ] | | | parameters => array (8) [ ... ] | | | registry private => array (33) [ ... ] | | | creating private => array ()| | method private => "GET" (3) | | url private => Nette\Http\UrlScript #0d14| httpResponse private => Nette\Http\Response #262d| | | scriptPath private => "/BPIS/www/" (10) | | | scheme private => "http" (4) | | | user private => "" | | | pass private => "" | | | host private => "localhost" (9) | | | port private => 80 | | | path private => "/BPIS/www/admin/" (16) | | | query private => "" | | | fragment private => ""| | query private => array () | | post private => array () | | files private => array () | | cookies private => array (7)| | | _ga => "GA1.1.995278083.1412259016" (26) | | | PHPSESSID => "92ukan969rvu0e5s0ebrd05qi3" (26) | | | "tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel" => "" | | | "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel" => "" | | | "tracy-debug-panel-Tracy-Debugger-dumps" => "910:554" (7) | | | "tracy-debug-bar" => "3:0" (3) | | | "nette-browser" => "g07tc9etp7" (10)| | headers private => array (10)| | | host => "localhost" (9) | | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" (72) | | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63) | | | "accept-language" => "cs,en-us;q=0.7,en;q=0.3" (23) | | | "accept-encoding" => "gzip, deflate" (13) | | | dnt => "1" | | | referer => "http://localhost/BPIS/www/admin/event/detail/32" (47) | | | cookie => "_ga=GA1.1.995278083.1412259016; PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel=; tracy-debug-pane ... " (291) | | | connection => "keep-alive" (10) | | | "cache-control" => "max-age=0" (9)| | remoteAddress private => "::1" (3) | | remoteHost private => NULL | | rawBody private => NULL| | cookieDomain => "" | | cookiePath => "/" | | cookieSecure => FALSE | | cookieHttpOnly => TRUE | | warnOnBuffer => FALSE | | code private => 200| user private => Nette\Security\User #5fe3| | guestRole => "guest" (5) | | authenticatedRole => "authenticated" (13) | | onLoggedIn => NULL | | onLoggedOut => NULL | | storage private => Nette\Http\UserStorage #a3a0| cacheStorage private => Nette\Caching\Storages\FileStorage #a30d| | | namespace private => "" | | | sessionHandler private => Nette\Http\Session #bafd { ... } | | | sessionSection private => Nette\Http\SessionSection #aa7e { ... }| | authenticator private => App\Model\UserManager #e38e| | | connection protected => Nette\Database\Context #e7d6 { ... }| | authorizator private => NULL| | dir private => "C:\xampp\htdocs\BPIS\temp\cache" (31) | | useDirs private => TRUE | | journal private => Nette\Caching\Storages\FileJournal #9138| | | file private => "C:\xampp\htdocs\BPIS\app/../temp/btfj.dat" (41) | | | handle private => NULL | | | lastNode private => 2 | | | processIdentifier private => NULL | | | nodeCache private => array () | | | nodeChanged private => array () | | | toCommit private => array () | | | deletedLinks private => array () | | | dataNodeFreeSpace private => array ()| | locks private => NULL| latte private => Latte\Engine #e1eeinvalidSnippets private => array () snippetMode => NULL params protected => array (3)| | onCompile => array (1)| file private => NULL | params private => array (12)| | | 0 => Closure #d19a| | parser private => NULL | | compiler private => NULL | | loader private => Nette\Bridges\ApplicationLatte\Loader #462a| | | | file => "C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\TemplateFactory.php" (94) | | | | line => 69 | | | | variables => array (2) [ ... ] | | | | parameters => "$latte" (6)| | | presenter private => FrontModule\ErrorPresenter #412d { RECURSION }| | contentType private => "html" (4) | | tempDirectory private => "C:\xampp\htdocs\BPIS\app/../temp/cache/latte" (44) | | autoRefresh private => TRUE | | filters private => array (38)| | | "" => array () | | | bytes => "Latte\Runtime\Filters::bytes" (28) | | | capitalize => "Latte\Runtime\Filters::capitalize" (33) | | | datastream => "Latte\Runtime\Filters::dataStream" (33) | | | date => "Latte\Runtime\Filters::date" (27) | | | escapecss => "Latte\Runtime\Filters::escapeCss" (32) | | | escapehtml => "Latte\Runtime\Filters::escapeHtml" (33) | | | escapehtmlcomment => "Latte\Runtime\Filters::escapeHtmlComment" (40) | | | escapeical => "Latte\Runtime\Filters::escapeICal" (33) | | | escapejs => "Latte\Runtime\Filters::escapeJs" (31) | | | escapeurl => "rawurlencode" (12) | | | escapexml => "Latte\Runtime\Filters::escapeXML" (32) | | | firstupper => "Latte\Runtime\Filters::firstUpper" (33) | | | implode => "implode" (7) | | | indent => "Latte\Runtime\Filters::indent" (29) | | | lower => "Latte\Runtime\Filters::lower" (28) | | | nl2br => "Latte\Runtime\Filters::nl2br" (28) | | | number => "number_format" (13) | | | repeat => "str_repeat" (10) | | | replace => "Latte\Runtime\Filters::replace" (30) | | | replacere => "Latte\Runtime\Filters::replaceRe" (32) | | | safeurl => "Latte\Runtime\Filters::safeUrl" (30) | | | strip => "Latte\Runtime\Filters::strip" (28) | | | striptags => "strip_tags" (10) | | | substr => "Latte\Runtime\Filters::substring" (32) | | | trim => "Latte\Runtime\Filters::trim" (27) | | | truncate => "Latte\Runtime\Filters::truncate" (31) | | | upper => "Latte\Runtime\Filters::upper" (28) | | | url => "rawurlencode" (12) | | | normalize => "Nette\Utils\Strings::normalize" (30) | | | toascii => "Nette\Utils\Strings::toAscii" (28) | | | webalize => "Nette\Utils\Strings::webalize" (29) | | | padleft => "Nette\Utils\Strings::padLeft" (28) | | | padright => "Nette\Utils\Strings::padRight" (29) | | | reverse => "Nette\Utils\Strings::reverse" (28) | | | null => Closure #3b64| | baseTemplateClass private => "Latte\Template" (14)| | | | file => "C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\TemplateFactory.php" (94) | | | | line => 81 | | | | variables => array () | | | | parameters => ""| | | length => Closure #a8e4| | | | file => "C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\TemplateFactory.php" (94) | | | | line => 82 | | | | variables => array () | | | | parameters => "$var" (4)| | | modifydate => Closure #910b| | | | file => "C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\TemplateFactory.php" (94) | | | | line => 85 | | | | variables => array () | | | | parameters => "$time, $delta, $unit" (20)| | _control => FrontModule\ErrorPresenter #412d { RECURSION } | | control => FrontModule\ErrorPresenter #412d { RECURSION } | | _presenter => FrontModule\ErrorPresenter #412d { RECURSION } | | presenter => FrontModule\ErrorPresenter #412d { RECURSION } | | user => Nette\Security\User #5fe3| | | guestRole => "guest" (5) | | | authenticatedRole => "authenticated" (13) | | | onLoggedIn => NULL | | | onLoggedOut => NULL | | | storage private => Nette\Http\UserStorage #a3a0 { ... } | | | authenticator private => App\Model\UserManager #e38e { ... } | | | authorizator private => NULL| | netteHttpResponse => Nette\Http\Response #262d| | | cookieDomain => "" | | | cookiePath => "/" | | | cookieSecure => FALSE | | | cookieHttpOnly => TRUE | | | warnOnBuffer => FALSE | | | code private => 200| | netteCacheStorage => Nette\Caching\Storages\FileStorage #a30d| | | dir private => "C:\xampp\htdocs\BPIS\temp\cache" (31) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #9138 { ... } | | | locks private => NULL| | baseUrl => "http://localhost/BPIS/www" (25) | | baseUri => "http://localhost/BPIS/www" (25) | | basePath => "/BPIS/www" (9) | | flashes => array () | | config => Nette\Database\Table\ActiveRow #7ed3| | | table private => Nette\Database\Table\Selection #dbf5 { ... } | | | data private => array (3) [ ... ] | | | dataRefreshed private => FALSE| exception => PDOException #70aacomponents private => array () cloning private => NULL parent private => NULL name private => "Front:Error" (11) monitors private => array () templateFactory private => NULL| | message protected => "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'RAND' in 'order clause'" (79) | | string private => "exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'RAND' in 'order clause'' in C:\xampp\htdocs\BPIS\vendor ... " (3478) | | code protected => "42S22" (5) | | file protected => "C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\ResultSet.php" (69) | | line protected => 68 | | trace private => array (24)| request => Nette\Application\Request #651b| | | 0 => array (6) [ ... ] | | | 1 => array (6) [ ... ] | | | 2 => array (6) [ ... ] | | | 3 => array (6) [ ... ] | | | 4 => array (6) [ ... ] | | | 5 => array (4) [ ... ] | | | 6 => array (4) [ ... ] | | | 7 => array (4) [ ... ] | | | 8 => array (6) [ ... ] | | | 9 => array (4) [ ... ] | | | 10 => array (4) [ ... ] | | | 11 => array (4) [ ... ] | | | 12 => array (6) [ ... ] | | | 13 => array (6) [ ... ] | | | 14 => array (6) [ ... ] | | | 15 => array (4) [ ... ] | | | 16 => array (4) [ ... ] | | | 17 => array (4) [ ... ] | | | 18 => array (6) [ ... ] | | | 19 => array (6) [ ... ] | | | 20 => array (6) [ ... ] | | | 21 => array (6) [ ... ] | | | 22 => array (6) [ ... ] | | | 23 => array (6) [ ... ]| | previous private => NULL | | errorInfo => array (3)| | | 0 => "42S22" (5) | | | 1 => 1054 | | | 2 => "Unknown column 'RAND' in 'order clause'" (39)| | queryString => "SELECT * FROM `borrowing` WHERE (`user_id` = 1) AND (`date_give_back` IS NULL) ORDER BY RAND LIMIT 4" (100)| | method private => "GET" (3) | | flags private => array (1)| action => "default" (7)| | | secured => FALSE| | name private => "Admin:Admin" (11) | | params private => array (2)| | | action => "default" (7) | | | id => NULL| | post private => array () | | files private => array ()
| REDIRECT_MIBDIRS | "C:/xampp/php/extras/mibs" (24)
|
|---|---|
| REDIRECT_MYSQL_HOME | "\xampp\mysql\bin" (16)
|
| REDIRECT_OPENSSL_CONF | "C:/xampp/apache/bin/openssl.cnf" (31)
|
| REDIRECT_PHP_PEAR_SYSCONF_DIR | "\xampp\php" (10)
|
| REDIRECT_PHPRC | "\xampp\php" (10)
|
| REDIRECT_TMP | "\xampp\tmp" (10)
|
| REDIRECT_STATUS | "200" (3)
|
| MIBDIRS | "C:/xampp/php/extras/mibs" (24)
|
| MYSQL_HOME | "\xampp\mysql\bin" (16)
|
| OPENSSL_CONF | "C:/xampp/apache/bin/openssl.cnf" (31)
|
| PHP_PEAR_SYSCONF_DIR | "\xampp\php" (10)
|
| PHPRC | "\xampp\php" (10)
|
| TMP | "\xampp\tmp" (10)
|
| HTTP_HOST | "localhost" (9)
|
| HTTP_USER_AGENT | "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" (72)
|
| HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63)
|
| HTTP_ACCEPT_LANGUAGE | "cs,en-us;q=0.7,en;q=0.3" (23)
|
| HTTP_ACCEPT_ENCODING | "gzip, deflate" (13)
|
| HTTP_DNT | "1"
|
| HTTP_REFERER | "http://localhost/BPIS/www/admin/event/detail/32" (47)
|
| HTTP_COOKIE | "_ga=GA1.1.995278083.1412259016; PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel=; tracy-debug-pane ... " (291)
|
| HTTP_CONNECTION | "keep-alive" (10)
|
| HTTP_CACHE_CONTROL | "max-age=0" (9)
|
| PATH | "C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\ ... " (516)
|
| SystemRoot | "C:\Windows" (10)
|
| COMSPEC | "C:\Windows\system32\cmd.exe" (27)
|
| PATHEXT | ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC" (53)
|
| WINDIR | "C:\Windows" (10)
|
| SERVER_SIGNATURE | "<address>Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.11 Server at localhost Port 80</address>
" (94)
|
| SERVER_SOFTWARE | "Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.11" (46)
|
| SERVER_NAME | "localhost" (9)
|
| SERVER_ADDR | "::1" (3)
|
| SERVER_PORT | "80" (2)
|
| REMOTE_ADDR | "::1" (3)
|
| DOCUMENT_ROOT | "C:/xampp/htdocs" (15)
|
| REQUEST_SCHEME | "http" (4)
|
| CONTEXT_PREFIX | ""
|
| CONTEXT_DOCUMENT_ROOT | "C:/xampp/htdocs" (15)
|
| SERVER_ADMIN | "postmaster@localhost" (20)
|
| SCRIPT_FILENAME | "C:/xampp/htdocs/BPIS/www/index.php" (34)
|
| REMOTE_PORT | "57266" (5)
|
| REDIRECT_URL | "/BPIS/www/admin/" (16)
|
| GATEWAY_INTERFACE | "CGI/1.1" (7)
|
| SERVER_PROTOCOL | "HTTP/1.1" (8)
|
| REQUEST_METHOD | "GET" (3)
|
| QUERY_STRING | ""
|
| REQUEST_URI | "/BPIS/www/admin/" (16)
|
| SCRIPT_NAME | "/BPIS/www/index.php" (19)
|
| PHP_SELF | "/BPIS/www/index.php" (19)
|
| REQUEST_TIME_FLOAT | 1431281025.988
|
| REQUEST_TIME | 1431281025
|
| __NF | Nette Session |
|---|
| Nette.Application/requests | array (22) |
|---|---|
| Nette.Http.UserStorage/ | array (9) |
| Nette.Application.Flash/hi35 | array (1) |
| Nette.Application.Flash/yfzq | array (1) |
| Nette.Application.Flash/1vyp | array (1) |
| Nette.Application.Flash/qikb | array (1) |
| Nette.Application.Flash/n00x | array (1) |
| Nette.Application.Flash/tnk9 | array (1) |
| C:\xampp\htdocs\BPIS\www\index.php |
| C:\xampp\htdocs\BPIS\app\bootstrap.php |
| C:\xampp\htdocs\BPIS\vendor\autoload.php |
| C:\xampp\htdocs\BPIS\vendor\composer\autoload_real.php |
| C:\xampp\htdocs\BPIS\vendor\composer\ClassLoader.php |
| C:\xampp\htdocs\BPIS\vendor\composer\autoload_namespaces.php |
| C:\xampp\htdocs\BPIS\vendor\composer\autoload_psr4.php |
| C:\xampp\htdocs\BPIS\vendor\composer\autoload_classmap.php |
| C:\xampp\htdocs\BPIS\vendor\composer\autoload_files.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\shortcuts.php |
| C:\xampp\htdocs\BPIS\vendor\nette\deprecated\src\shortcuts.php |
| C:\xampp\htdocs\BPIS\vendor\nette\bootstrap\src\Bootstrap\Configurator.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\Object.php |
| C:\xampp\htdocs\BPIS\vendor\nette\bootstrap\src\Bridges\Framework\TracyBridge.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\Debugger.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\BlueScreen.php |
| C:\xampp\htdocs\BPIS\vendor\nette\nette\Nette\Framework.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\Bar.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\DefaultBarPanel.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\IBarPanel.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\Dumper.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\FireLogger.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\Helpers.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\Logger.php |
| C:\xampp\htdocs\BPIS\vendor\nette\robot-loader\src\RobotLoader\RobotLoader.php |
| C:\xampp\htdocs\BPIS\vendor\nette\caching\src\Caching\Storages\FileStorage.php |
| C:\xampp\htdocs\BPIS\vendor\nette\caching\src\Caching\IStorage.php |
| C:\xampp\htdocs\BPIS\vendor\nette\caching\src\Caching\Cache.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Config\Extension.php |
| C:\xampp\htdocs\BPIS\vendor\nette\di\src\DI\CompilerExtension.php |
| C:\xampp\htdocs\BPIS\vendor\nette\deprecated\src\Loaders\NetteLoader.php |
| C:\xampp\htdocs\BPIS\vendor\kdyby\forms-replicator\src\Kdyby\Replicator\Container.php |
| C:\xampp\htdocs\BPIS\vendor\nette\forms\src\Forms\Container.php |
| C:\xampp\htdocs\BPIS\vendor\nette\component-model\src\ComponentModel\Container.php |
| C:\xampp\htdocs\BPIS\vendor\nette\component-model\src\ComponentModel\Component.php |
| C:\xampp\htdocs\BPIS\vendor\nette\component-model\src\ComponentModel\IComponent.php |
| C:\xampp\htdocs\BPIS\vendor\nette\component-model\src\ComponentModel\IContainer.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\ObjectMixin.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\Callback.php |
| C:\xampp\htdocs\BPIS\vendor\nette\forms\src\Forms\Controls\SubmitButton.php |
| C:\xampp\htdocs\BPIS\vendor\nette\forms\src\Forms\Controls\Button.php |
| C:\xampp\htdocs\BPIS\vendor\nette\forms\src\Forms\Controls\BaseControl.php |
| C:\xampp\htdocs\BPIS\vendor\nette\forms\src\Forms\IControl.php |
| C:\xampp\htdocs\BPIS\vendor\nette\forms\src\Forms\ISubmitterControl.php |
| C:\xampp\htdocs\BPIS\vendor\nette\di\src\DI\Config\Loader.php |
| C:\xampp\htdocs\BPIS\vendor\nette\di\src\DI\Config\Adapters\NeonAdapter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\di\src\DI\Config\IAdapter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\neon\src\Neon\Neon.php |
| C:\xampp\htdocs\BPIS\vendor\nette\neon\src\Neon\Decoder.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\Validators.php |
| C:\xampp\htdocs\BPIS\vendor\nette\di\src\DI\ContainerFactory.php |
| C:\xampp\htdocs\BPIS\temp\cache\Nette.Configurator\1e59e7ae47df2c602591bde709fc9cfc.php |
| C:\xampp\htdocs\BPIS\vendor\nette\di\src\DI\Container.php |
| C:\xampp\htdocs\BPIS\app\components\EventPlanning\IEventPlanningControlFactory.php |
| C:\xampp\htdocs\BPIS\app\components\TimeLine\ITimeLineControlFactory.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\ILatteFactory.php |
| C:\xampp\htdocs\BPIS\vendor\nette\reflection\src\Reflection\ClassType.php |
| C:\xampp\htdocs\BPIS\vendor\nette\reflection\src\Reflection\Method.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\Session.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\RequestFactory.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\UrlScript.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\Url.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\Strings.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\Request.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\IRequest.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\Response.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\IResponse.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\DateTime.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\Request.php |
| C:\xampp\htdocs\BPIS\vendor\nette\security\src\Security\Identity.php |
| C:\xampp\htdocs\BPIS\vendor\nette\security\src\Security\IIdentity.php |
| C:\xampp\htdocs\BPIS\vendor\nette\safe-stream\src\SafeStream\SafeStream.php |
| C:\xampp\htdocs\BPIS\vendor\nette\reflection\src\Reflection\AnnotationsParser.php |
| C:\xampp\htdocs\BPIS\vendor\nette\caching\src\Caching\Storages\FileJournal.php |
| C:\xampp\htdocs\BPIS\vendor\nette\caching\src\Caching\Storages\IJournal.php |
| C:\xampp\htdocs\BPIS\vendor\nette\deprecated\src\Environment.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\Application.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\PresenterFactory.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\IPresenterFactory.php |
| C:\xampp\htdocs\BPIS\app\router\RouterFactory.php |
| C:\xampp\htdocs\BPIS\app\model\FrontpageManager.php |
| C:\xampp\htdocs\BPIS\app\model\BaseManager.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Context.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Connection.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Helpers.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Bridges\DatabaseTracy\ConnectionPanel.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Reflection\DiscoveredReflection.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\IReflection.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\Routers\RouteList.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\ArrayList.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\IRouter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\Routers\Route.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationTracy\RoutingPanel.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\AdminPresenter.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\BasePresenter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\Presenter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\Control.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\PresenterComponent.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\ISignalReceiver.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\IStatePersistent.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\IRenderable.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\IPresenter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\di\src\DI\Helpers.php |
| C:\xampp\htdocs\BPIS\vendor\nette\reflection\src\Reflection\Parameter.php |
| C:\xampp\htdocs\BPIS\app\model\EventManager.php |
| C:\xampp\htdocs\BPIS\app\model\TermManager.php |
| C:\xampp\htdocs\BPIS\app\model\UserManager.php |
| C:\xampp\htdocs\BPIS\vendor\nette\security\src\Security\IAuthenticator.php |
| C:\xampp\htdocs\BPIS\app\model\BorrowingManager.php |
| C:\xampp\htdocs\BPIS\app\model\RecordManager.php |
| C:\xampp\htdocs\BPIS\vendor\nette\security\src\Security\User.php |
| C:\xampp\htdocs\BPIS\vendor\nette\security\src\Security\IUserStorage.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\UserStorage.php |
| C:\xampp\htdocs\BPIS\vendor\nette\security\src\Bridges\SecurityTracy\UserPanel.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\ITemplateFactory.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\TemplateFactory.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Control\Factory.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\MenuFactory.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\FactoryInterface.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\Factory\CoreExtension.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\Factory\ExtensionInterface.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\MenuExtension.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Renderer\Manager.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Renderer\IManager.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Renderer\BootstrapNavRenderer.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Renderer\ListRenderer.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\Renderer\Renderer.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Renderer\IRenderer.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\Renderer\RendererInterface.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Matcher\Matcher.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Matcher\IMatcher.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\Matcher\MatcherInterface.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Matcher\Voter\PresenterVoter.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Matcher\Voter\IVoter.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\Matcher\Voter\VoterInterface.php |
| C:\xampp\htdocs\BPIS\vendor\nette\reflection\src\Reflection\Property.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\PresenterComponentReflection.php |
| C:\xampp\htdocs\BPIS\vendor\nette\http\src\Http\SessionSection.php |
| C:\xampp\htdocs\BPIS\vendor\nette\component-model\src\ComponentModel\RecursiveComponentIterator.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Iterators\Filter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Table\Selection.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Table\IRowContainer.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\IRowContainer.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Table\SqlBuilder.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Drivers\MySqlDriver.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\ISupplementalDriver.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\ResultSet.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\SqlPreprocessor.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Engine.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Object.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Compiler.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\Template.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\UI\ITemplate.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Bridges\ApplicationLatte\Loader.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Loaders\FileLoader.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\ILoader.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Row.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\ArrayHash.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\IRow.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\Responses\TextResponse.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\IResponse.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\exceptions.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Template.php |
| C:\xampp\htdocs\BPIS\temp\cache\latte\BPIS-app-AdminModule-templates-Admin-default-latte-75db61f291520caf5366a45c93cc430a.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Runtime\Filters.php |
| C:\xampp\htdocs\BPIS\temp\cache\latte\BPIS-app-AdminModule-templates-layoutAdmin-latte-dd13f6669f53146cbbb4003008e8d85d.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Helpers.php |
| C:\xampp\htdocs\BPIS\app\FrontModule\presenters\HomepagePresenter.php |
| C:\xampp\htdocs\BPIS\app\FrontModule\presenters\BasePresenter.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\UserPresenter.php |
| C:\xampp\htdocs\BPIS\app\FrontModule\presenters\SignPresenter.php |
| C:\xampp\htdocs\BPIS\vendor\trunda\smf-menu\src\Smf\Menu\Control\MenuControl.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\MenuItem.php |
| C:\xampp\htdocs\BPIS\vendor\knplabs\knp-menu\src\Knp\Menu\ItemInterface.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\Html.php |
| C:\xampp\htdocs\BPIS\vendor\nette\utils\src\Utils\IHtmlString.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\FrontPagePresenter.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\ConfigPresenter.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\BorrowingPresenter.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\RecordPresenter.php |
| C:\xampp\htdocs\BPIS\app\AdminModule\presenters\EventPresenter.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Macros\BlockMacros.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\Macros\MacroSet.php |
| C:\xampp\htdocs\BPIS\vendor\latte\latte\src\Latte\IMacro.php |
| C:\xampp\htdocs\BPIS\app\FrontModule\presenters\ErrorPresenter.php |
| C:\xampp\htdocs\BPIS\vendor\nette\application\src\Application\Responses\ForwardResponse.php |
| C:\xampp\htdocs\BPIS\app\model\ConfigManager.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Table\ActiveRow.php |
| C:\xampp\htdocs\BPIS\vendor\nette\database\src\Database\Table\IRow.php |
| C:\xampp\htdocs\BPIS\vendor\nette\deprecated\src\Diagnostics\Debugger.php |
| C:\xampp\htdocs\BPIS\vendor\tracy\tracy\src\Tracy\templates\bluescreen.phtml |
| Apache Version | Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.11 |
| Apache API Version | 20120211 |
| Server Administrator | postmaster@localhost |
| Hostname:Port | localhost:80 |
| Max Requests | Per Child: 0 - Keep Alive: on - Max Per Connection: 100 |
| Timeouts | Connection: 300 - Keep-Alive: 5 |
| Virtual Server | No |
| Server Root | C:/xampp/apache |
| Loaded Modules | core mod_win32 mpm_winnt http_core mod_so mod_access_compat mod_actions mod_alias mod_allowmethods mod_asis mod_auth_basic mod_authn_core mod_authn_file mod_authz_core mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dav_lock mod_dir mod_env mod_headers mod_include mod_info mod_isapi mod_log_config mod_cache_disk mod_mime mod_negotiation mod_proxy mod_proxy_ajp mod_rewrite mod_setenvif mod_socache_shmcb mod_ssl mod_status mod_version mod_php5 |
| Directive | Local Value | Master Value |
|---|---|---|
| engine | 1 | 1 |
| last_modified | 0 | 0 |
| xbithack | 0 | 0 |
| Variable | Value |
|---|---|
| REDIRECT_MIBDIRS | C:/xampp/php/extras/mibs |
| REDIRECT_MYSQL_HOME | \xampp\mysql\bin |
| REDIRECT_OPENSSL_CONF | C:/xampp/apache/bin/openssl.cnf |
| REDIRECT_PHP_PEAR_SYSCONF_DIR | \xampp\php |
| REDIRECT_PHPRC | \xampp\php |
| REDIRECT_TMP | \xampp\tmp |
| REDIRECT_STATUS | 200 |
| MIBDIRS | C:/xampp/php/extras/mibs |
| MYSQL_HOME | \xampp\mysql\bin |
| OPENSSL_CONF | C:/xampp/apache/bin/openssl.cnf |
| PHP_PEAR_SYSCONF_DIR | \xampp\php |
| PHPRC | \xampp\php |
| TMP | \xampp\tmp |
| HTTP_HOST | localhost |
| HTTP_USER_AGENT | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0 |
| HTTP_ACCEPT | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
| HTTP_ACCEPT_LANGUAGE | cs,en-us;q=0.7,en;q=0.3 |
| HTTP_ACCEPT_ENCODING | gzip, deflate |
| HTTP_DNT | 1 |
| HTTP_REFERER | http://localhost/BPIS/www/admin/event/detail/32 |
| HTTP_COOKIE | _ga=GA1.1.995278083.1412259016; PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel=; tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel=; tracy-debug-panel-Tracy-Debugger-dumps=910:554; tracy-debug-bar=3:0; nette-browser=g07tc9etp7 |
| HTTP_CONNECTION | keep-alive |
| HTTP_CACHE_CONTROL | max-age=0 |
| PATH | C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\xampp\php;C:\ProgramData\ComposerSetup\bin;C:\Program Files\nodejs\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\xampp\php;C:\ProgramData\ComposerSetup\bin;C:\Users\Pavel\adb;C:\Users\Pavel\AppData\Roaming\npm |
| SystemRoot | C:\Windows |
| COMSPEC | C:\Windows\system32\cmd.exe |
| PATHEXT | .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC |
| WINDIR | C:\Windows |
| SERVER_SIGNATURE | <address>Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.11 Server at localhost Port 80</address> |
| SERVER_SOFTWARE | Apache/2.4.9 (Win32) OpenSSL/1.0.1g PHP/5.5.11 |
| SERVER_NAME | localhost |
| SERVER_ADDR | ::1 |
| SERVER_PORT | 80 |
| REMOTE_ADDR | ::1 |
| DOCUMENT_ROOT | C:/xampp/htdocs |
| REQUEST_SCHEME | http |
| CONTEXT_PREFIX | no value |
| CONTEXT_DOCUMENT_ROOT | C:/xampp/htdocs |
| SERVER_ADMIN | postmaster@localhost |
| SCRIPT_FILENAME | C:/xampp/htdocs/BPIS/www/index.php |
| REMOTE_PORT | 57266 |
| REDIRECT_URL | /BPIS/www/admin/ |
| GATEWAY_INTERFACE | CGI/1.1 |
| SERVER_PROTOCOL | HTTP/1.1 |
| REQUEST_METHOD | GET |
| QUERY_STRING | no value |
| REQUEST_URI | /BPIS/www/admin/ |
| SCRIPT_NAME | /BPIS/www/index.php |
| HTTP Request Headers | |
|---|---|
| HTTP Request | GET /BPIS/www/admin/ HTTP/1.1 |
| Host | localhost |
| User-Agent | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0 |
| Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
| Accept-Language | cs,en-us;q=0.7,en;q=0.3 |
| Accept-Encoding | gzip, deflate |
| DNT | 1 |
| Referer | http://localhost/BPIS/www/admin/event/detail/32 |
| Cookie | _ga=GA1.1.995278083.1412259016; PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel=; tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel=; tracy-debug-panel-Tracy-Debugger-dumps=910:554; tracy-debug-bar=3:0; nette-browser=g07tc9etp7 |
| Connection | keep-alive |
| Cache-Control | max-age=0 |
| HTTP Response Headers | |
| X-Powered-By | Nette Framework |
| Expires | Thu, 19 Nov 1981 08:52:00 GMT |
| Cache-Control | no-store, no-cache, must-revalidate, post-check=0, pre-check=0 |
| Pragma | no-cache |
| X-Frame-Options | SAMEORIGIN |
| Vary | X-Requested-With |
| Set-Cookie | PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; expires=Sun, 24-May-2015 18:03:46 GMT; Max-Age=1209600; path=/; httponly |
| Set-Cookie | nette-browser=g07tc9etp7; path=/; httponly |
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
| BZip2 Support | Enabled |
| Stream Wrapper support | compress.bzip2:// |
| Stream Filter support | bzip2.decompress, bzip2.compress |
| BZip2 Version | 1.0.6, 6-Sept-2010 |
| Calendar support | enabled |
| PHP Version | 5.5.11 |
| Directive | Local Value | Master Value |
|---|---|---|
| allow_url_fopen | On | On |
| allow_url_include | Off | Off |
| always_populate_raw_post_data | Off | Off |
| arg_separator.input | & | & |
| arg_separator.output | & | & |
| asp_tags | Off | Off |
| auto_append_file | no value | no value |
| auto_globals_jit | On | On |
| auto_prepend_file | no value | no value |
| browscap | C:\xampp\php\extras\browscap.ini | C:\xampp\php\extras\browscap.ini |
| default_charset | no value | no value |
| default_mimetype | text/html | text/html |
| disable_classes | no value | no value |
| disable_functions | no value | no value |
| display_errors | On | On |
| display_startup_errors | On | On |
| doc_root | no value | no value |
| docref_ext | no value | no value |
| docref_root | no value | no value |
| enable_dl | On | On |
| enable_post_data_reading | On | On |
| error_append_string | no value | no value |
| error_log | C:\xampp\htdocs\BPIS\log/php_error.log | C:\xampp\php\logs\php_error_log |
| error_prepend_string | no value | no value |
| error_reporting | 0 | 22527 |
| exit_on_timeout | Off | Off |
| expose_php | On | On |
| extension_dir | C:\xampp\php\ext | C:\xampp\php\ext |
| file_uploads | On | On |
| highlight.comment | #998; font-style: italic | #FF8000 |
| highlight.default | #000 | #0000BB |
| highlight.html | #06B | #000000 |
| highlight.keyword | #D24; font-weight: bold | #007700 |
| highlight.string | #080 | #DD0000 |
| html_errors | Off | On |
| ignore_repeated_errors | Off | Off |
| ignore_repeated_source | Off | Off |
| ignore_user_abort | Off | Off |
| implicit_flush | Off | Off |
| include_path | .;C:\xampp\php\PEAR | .;C:\xampp\php\PEAR |
| log_errors | Off | On |
| log_errors_max_len | 1024 | 1024 |
| mail.add_x_header | Off | Off |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| max_execution_time | 30 | 30 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 60 | 60 |
| max_input_vars | 1000 | 1000 |
| memory_limit | 128M | 128M |
| open_basedir | no value | no value |
| output_buffering | 4096 | 4096 |
| output_handler | no value | no value |
| post_max_size | 1000M | 1000M |
| precision | 14 | 14 |
| realpath_cache_size | 16K | 16K |
| realpath_cache_ttl | 120 | 120 |
| register_argc_argv | Off | Off |
| report_memleaks | On | On |
| report_zend_debug | On | On |
| request_order | GP | GP |
| sendmail_from | no value | no value |
| sendmail_path | C:\xampp\mailtodisk\mailtodisk.exe | C:\xampp\mailtodisk\mailtodisk.exe |
| serialize_precision | 100 | 100 |
| short_open_tag | Off | Off |
| SMTP | localhost | localhost |
| smtp_port | 25 | 25 |
| sql.safe_mode | Off | Off |
| sys_temp_dir | no value | no value |
| track_errors | On | On |
| unserialize_callback_func | no value | no value |
| upload_max_filesize | 200M | 200M |
| upload_tmp_dir | C:\xampp\tmp | C:\xampp\tmp |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | .user.ini | .user.ini |
| variables_order | GPCS | GPCS |
| windows.show_crt_warning | Off | Off |
| xmlrpc_error_number | 0 | 0 |
| xmlrpc_errors | Off | Off |
| zend.detect_unicode | On | On |
| zend.enable_gc | On | On |
| zend.multibyte | Off | Off |
| zend.script_encoding | no value | no value |
| ctype functions | enabled |
| cURL support | enabled |
| cURL Information | 7.36.0 |
| Age | 3 |
| Features | |
| AsynchDNS | Yes |
| CharConv | No |
| Debug | No |
| GSS-Negotiate | Yes |
| IDN | Yes |
| IPv6 | Yes |
| krb4 | No |
| Largefile | Yes |
| libz | Yes |
| NTLM | Yes |
| NTLMWB | No |
| SPNEGO | Yes |
| SSL | Yes |
| SSPI | Yes |
| TLS-SRP | No |
| Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp |
| Host | i386-pc-win32 |
| SSL Version | OpenSSL/1.0.1g |
| ZLib Version | 1.2.7 |
| libSSH Version | libssh2/1.4.3 |
| date/time support | enabled |
| "Olson" Timezone Database Version | 2014.1 |
| Timezone Database | internal |
| Default timezone | Europe/Prague |
| Directive | Local Value | Master Value |
|---|---|---|
| date.default_latitude | 31.7667 | 31.7667 |
| date.default_longitude | 35.2333 | 35.2333 |
| date.sunrise_zenith | 90.583333 | 90.583333 |
| date.sunset_zenith | 90.583333 | 90.583333 |
| date.timezone | Europe/Berlin | Europe/Berlin |
| DOM/XML | enabled |
| DOM/XML API Version | 20031129 |
| libxml Version | 2.9.1 |
| HTML Support | enabled |
| XPath Support | enabled |
| XPointer Support | enabled |
| Schema Support | enabled |
| RelaxNG Support | enabled |
| Regex Library | Bundled library enabled |
| EXIF Support | enabled |
| EXIF Version | 1.4 $Id$ |
| Supported EXIF Version | 0220 |
| Supported filetypes | JPEG,TIFF |
| Directive | Local Value | Master Value |
|---|---|---|
| exif.decode_jis_intel | JIS | JIS |
| exif.decode_jis_motorola | JIS | JIS |
| exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
| exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
| exif.encode_jis | no value | no value |
| exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
| fileinfo support | enabled |
| version | 1.0.5 |
| Input Validation and Filtering | enabled |
| Revision | $Id: 4d3899e089e6e45b157975ceef2ac7deb6e9d762 $ |
| Directive | Local Value | Master Value |
|---|---|---|
| filter.default | unsafe_raw | unsafe_raw |
| filter.default_flags | no value | no value |
| FTP support | enabled |
| GD Support | enabled |
| GD Version | bundled (2.1.0 compatible) |
| FreeType Support | enabled |
| FreeType Linkage | with freetype |
| FreeType Version | 2.4.10 |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| libJPEG Version | 9 compatible |
| PNG Support | enabled |
| libPNG Version | 1.5.18 |
| WBMP Support | enabled |
| XPM Support | enabled |
| libXpm Version | 30411 |
| XBM Support | enabled |
| WebP Support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | 0 | 0 |
| GetText Support | enabled |
| hash support | enabled |
| Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost adler32 crc32 crc32b fnv132 fnv164 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
| iconv support | enabled |
| iconv implementation | "libiconv" |
| iconv library version | 1.14 |
| Directive | Local Value | Master Value |
|---|---|---|
| iconv.input_encoding | ISO-8859-1 | ISO-8859-1 |
| iconv.internal_encoding | ISO-8859-1 | ISO-8859-1 |
| iconv.output_encoding | ISO-8859-1 | ISO-8859-1 |
| json support | enabled |
| json version | 1.2.1 |
| libXML support | active |
| libXML Compiled Version | 2.9.1 |
| libXML Loaded Version | 20901 |
| libXML streams | enabled |
| Multibyte Support | enabled |
| Multibyte string engine | libmbfl |
| HTTP input encoding translation | disabled |
| libmbfl version | 1.3.2 |
| mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
|---|
| Multibyte (japanese) regex support | enabled |
| Multibyte regex (oniguruma) version | 5.9.2 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.func_overload | 0 | 0 |
| mbstring.http_input | pass | pass |
| mbstring.http_output | pass | pass |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | no value | no value |
| mcrypt support | enabled |
|---|---|
| mcrypt_filter support | enabled |
| Version | 2.5.8 |
| Api No | 20021217 |
| Supported ciphers | cast-128 gost rijndael-128 twofish cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes arcfour |
| Supported modes | cbc cfb ctr ecb ncfb nofb ofb stream |
| Directive | Local Value | Master Value |
|---|---|---|
| mcrypt.algorithms_dir | no value | no value |
| mcrypt.modes_dir | no value | no value |
| MHASH support | Enabled |
| MHASH API Version | Emulated Support |
| MySQL Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| Client API version | mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $ |
| Directive | Local Value | Master Value |
|---|---|---|
| mysql.allow_local_infile | On | On |
| mysql.allow_persistent | On | On |
| mysql.connect_timeout | 3 | 3 |
| mysql.default_host | no value | no value |
| mysql.default_password | no value | no value |
| mysql.default_port | 3306 | 3306 |
| mysql.default_socket | MySQL | MySQL |
| mysql.default_user | no value | no value |
| mysql.max_links | Unlimited | Unlimited |
| mysql.max_persistent | Unlimited | Unlimited |
| mysql.trace_mode | Off | Off |
| MysqlI Support | enabled |
|---|---|
| Client API library version | mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $ |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| mysqli.allow_local_infile | On | On |
| mysqli.allow_persistent | On | On |
| mysqli.default_host | no value | no value |
| mysqli.default_port | 3306 | 3306 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | MySQL | MySQL |
| mysqli.default_user | no value | no value |
| mysqli.max_links | Unlimited | Unlimited |
| mysqli.max_persistent | Unlimited | Unlimited |
| mysqli.reconnect | Off | Off |
| mysqlnd | enabled |
|---|---|
| Version | mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $ |
| Compression | supported |
| core SSL | supported |
| extended SSL | not supported |
| Command buffer size | 4096 |
| Read buffer size | 32768 |
| Read timeout | 31536000 |
| Collecting statistics | Yes |
| Collecting memory statistics | No |
| Tracing | n/a |
| Loaded plugins | mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password |
| API Extensions | mysql,mysqli,pdo_mysql |
| mysqlnd statistics | |
|---|---|
| bytes_sent | 11319 |
| bytes_received | 48260 |
| packets_sent | 276 |
| packets_received | 1402 |
| protocol_overhead_in | 5608 |
| protocol_overhead_out | 1104 |
| bytes_received_ok_packet | 0 |
| bytes_received_eof_packet | 0 |
| bytes_received_rset_header_packet | 1098 |
| bytes_received_rset_field_meta_packet | 0 |
| bytes_received_rset_row_packet | 769 |
| bytes_received_prepare_response_packet | 31111 |
| bytes_received_change_user_packet | 14227 |
| packets_sent_command | 133 |
| packets_received_ok | 0 |
| packets_received_eof | 0 |
| packets_received_rset_header | 122 |
| packets_received_rset_field_meta | 0 |
| packets_received_rset_row | 129 |
| packets_received_prepare_response | 836 |
| packets_received_change_user | 305 |
| result_set_queries | 122 |
| non_result_set_queries | 5 |
| no_index_used | 8 |
| bad_index_used | 0 |
| slow_queries | 0 |
| buffered_sets | 122 |
| unbuffered_sets | 0 |
| ps_buffered_sets | 0 |
| ps_unbuffered_sets | 0 |
| flushed_normal_sets | 0 |
| flushed_ps_sets | 0 |
| ps_prepared_never_executed | 0 |
| ps_prepared_once_executed | 0 |
| rows_fetched_from_server_normal | 183 |
| rows_fetched_from_server_ps | 0 |
| rows_buffered_from_client_normal | 183 |
| rows_buffered_from_client_ps | 0 |
| rows_fetched_from_client_normal_buffered | 183 |
| rows_fetched_from_client_normal_unbuffered | 0 |
| rows_fetched_from_client_ps_buffered | 0 |
| rows_fetched_from_client_ps_unbuffered | 0 |
| rows_fetched_from_client_ps_cursor | 0 |
| rows_affected_normal | 0 |
| rows_affected_ps | 0 |
| rows_skipped_normal | 183 |
| rows_skipped_ps | 0 |
| copy_on_write_saved | 1215 |
| copy_on_write_performed | 0 |
| command_buffer_too_small | 0 |
| connect_success | 5 |
| connect_failure | 0 |
| connection_reused | 0 |
| reconnect | 0 |
| pconnect_success | 0 |
| active_connections | 18446744073709551613 |
| active_persistent_connections | 0 |
| explicit_close | 4 |
| implicit_close | 0 |
| disconnect_close | 0 |
| in_middle_of_command_close | 0 |
| explicit_free_result | 122 |
| implicit_free_result | 0 |
| explicit_stmt_close | 0 |
| implicit_stmt_close | 0 |
| mem_emalloc_count | 0 |
| mem_emalloc_amount | 0 |
| mem_ecalloc_count | 0 |
| mem_ecalloc_amount | 0 |
| mem_erealloc_count | 0 |
| mem_erealloc_amount | 0 |
| mem_efree_count | 0 |
| mem_efree_amount | 0 |
| mem_malloc_count | 0 |
| mem_malloc_amount | 0 |
| mem_calloc_count | 0 |
| mem_calloc_amount | 0 |
| mem_realloc_count | 0 |
| mem_realloc_amount | 0 |
| mem_free_count | 0 |
| mem_free_amount | 0 |
| mem_estrndup_count | 0 |
| mem_strndup_count | 0 |
| mem_estndup_count | 0 |
| mem_strdup_count | 0 |
| proto_text_fetched_null | 0 |
| proto_text_fetched_bit | 0 |
| proto_text_fetched_tinyint | 20 |
| proto_text_fetched_short | 0 |
| proto_text_fetched_int24 | 0 |
| proto_text_fetched_int | 211 |
| proto_text_fetched_bigint | 126 |
| proto_text_fetched_decimal | 0 |
| proto_text_fetched_float | 0 |
| proto_text_fetched_double | 0 |
| proto_text_fetched_date | 6 |
| proto_text_fetched_year | 0 |
| proto_text_fetched_time | 0 |
| proto_text_fetched_datetime | 57 |
| proto_text_fetched_timestamp | 0 |
| proto_text_fetched_string | 630 |
| proto_text_fetched_blob | 37 |
| proto_text_fetched_enum | 0 |
| proto_text_fetched_set | 0 |
| proto_text_fetched_geometry | 0 |
| proto_text_fetched_other | 0 |
| proto_binary_fetched_null | 0 |
| proto_binary_fetched_bit | 0 |
| proto_binary_fetched_tinyint | 0 |
| proto_binary_fetched_short | 0 |
| proto_binary_fetched_int24 | 0 |
| proto_binary_fetched_int | 0 |
| proto_binary_fetched_bigint | 0 |
| proto_binary_fetched_decimal | 0 |
| proto_binary_fetched_float | 0 |
| proto_binary_fetched_double | 0 |
| proto_binary_fetched_date | 0 |
| proto_binary_fetched_year | 0 |
| proto_binary_fetched_time | 0 |
| proto_binary_fetched_datetime | 0 |
| proto_binary_fetched_timestamp | 0 |
| proto_binary_fetched_string | 0 |
| proto_binary_fetched_blob | 0 |
| proto_binary_fetched_enum | 0 |
| proto_binary_fetched_set | 0 |
| proto_binary_fetched_geometry | 0 |
| proto_binary_fetched_other | 0 |
| init_command_executed_count | 0 |
| init_command_failed_count | 0 |
| com_quit | 4 |
| com_init_db | 0 |
| com_query | 129 |
| com_field_list | 0 |
| com_create_db | 0 |
| com_drop_db | 0 |
| com_refresh | 0 |
| com_shutdown | 0 |
| com_statistics | 0 |
| com_process_info | 0 |
| com_connect | 0 |
| com_process_kill | 0 |
| com_debug | 0 |
| com_ping | 0 |
| com_time | 0 |
| com_delayed_insert | 0 |
| com_change_user | 0 |
| com_binlog_dump | 0 |
| com_table_dump | 0 |
| com_connect_out | 0 |
| com_register_slave | 0 |
| com_stmt_prepare | 0 |
| com_stmt_execute | 0 |
| com_stmt_send_long_data | 0 |
| com_stmt_close | 0 |
| com_stmt_reset | 0 |
| com_stmt_set_option | 0 |
| com_stmt_fetch | 0 |
| com_deamon | 0 |
| bytes_received_real_data_normal | 11786 |
| bytes_received_real_data_ps | 0 |
| ODBC Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| ODBC library | Win32 |
| Directive | Local Value | Master Value |
|---|---|---|
| odbc.allow_persistent | On | On |
| odbc.check_persistent | On | On |
| odbc.default_cursortype | Static cursor | Static cursor |
| odbc.default_db | no value | no value |
| odbc.default_pw | no value | no value |
| odbc.default_user | no value | no value |
| odbc.defaultbinmode | return as is | return as is |
| odbc.defaultlrl | return up to 4096 bytes | return up to 4096 bytes |
| odbc.max_links | Unlimited | Unlimited |
| odbc.max_persistent | Unlimited | Unlimited |
| OpenSSL support | enabled |
| OpenSSL Library Version | OpenSSL 1.0.1g 7 Apr 2014 |
| OpenSSL Header Version | OpenSSL 1.0.1g 7 Apr 2014 |
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 8.34 2013-12-15 |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 1000000 | 1000000 |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | mysql, sqlite |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $ |
| PDO Driver for SQLite 3.x | enabled |
|---|---|
| SQLite Library | 3.8.3.1 |
| Phar: PHP Archive support | enabled |
|---|---|
| Phar EXT version | 2.0.2 |
| Phar API version | 1.1.1 |
| SVN revision | $Id: a5488937a80433d434af6753d3db8517feaf91df $ |
| Phar-based phar archives | enabled |
| Tar-based phar archives | enabled |
| ZIP-based phar archives | enabled |
| gzip compression | enabled |
| bzip2 compression | enabled |
| OpenSSL support | enabled |
|
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
| Directive | Local Value | Master Value |
|---|---|---|
| phar.cache_list | no value | no value |
| phar.readonly | On | On |
| phar.require_hash | On | On |
| Reflection | enabled |
|---|---|
| Version | $Id: 31d836a7ac92a37b5c580836d91ad4736fe2f376 $ |
| Session Support | enabled |
| Registered save handlers | files user |
| Registered serializer handlers | php_serialize php php_binary wddx |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.cache_expire | 180 | 180 |
| session.cache_limiter | nocache | nocache |
| session.cookie_domain | no value | no value |
| session.cookie_httponly | On | Off |
| session.cookie_lifetime | 1209600 | 0 |
| session.cookie_path | / | / |
| session.cookie_secure | Off | Off |
| session.entropy_file | no value | no value |
| session.entropy_length | 0 | 0 |
| session.gc_divisor | 1000 | 1000 |
| session.gc_maxlifetime | 1209600 | 1440 |
| session.gc_probability | 1 | 1 |
| session.hash_bits_per_character | 5 | 5 |
| session.hash_function | 0 | 0 |
| session.name | PHPSESSID | PHPSESSID |
| session.referer_check | no value | no value |
| session.save_handler | files | files |
| session.save_path | C:\xampp\tmp | C:\xampp\tmp |
| session.serialize_handler | php | php |
| session.upload_progress.cleanup | On | On |
| session.upload_progress.enabled | On | On |
| session.upload_progress.freq | 1% | 1% |
| session.upload_progress.min_freq | 1 | 1 |
| session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
| session.upload_progress.prefix | upload_progress_ | upload_progress_ |
| session.use_cookies | On | On |
| session.use_only_cookies | On | Off |
| session.use_strict_mode | Off | Off |
| session.use_trans_sid | 0 | 0 |
| Simplexml support | enabled |
|---|---|
| Revision | $Id: 363ea1fc44b0b7775e2ec3ce8456530fec6d1660 $ |
| Schema support | enabled |
| Soap Client | enabled |
| Soap Server | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| soap.wsdl_cache | 1 | 1 |
| soap.wsdl_cache_dir | /tmp | /tmp |
| soap.wsdl_cache_enabled | 1 | 1 |
| soap.wsdl_cache_limit | 5 | 5 |
| soap.wsdl_cache_ttl | 86400 | 86400 |
| Sockets Support | enabled |
| SPL support | enabled |
|---|---|
| Interfaces | Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
| Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
| SQLite3 support | enabled |
|---|---|
| SQLite3 module version | 0.7-dev |
| SQLite Library | 3.8.3.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite3.extension_dir | no value | no value |
| Dynamic Library Support | enabled |
| Path to sendmail | C:\xampp\mailtodisk\mailtodisk.exe |
| Directive | Local Value | Master Value |
|---|---|---|
| assert.active | 1 | 1 |
| assert.bail | 0 | 0 |
| assert.callback | no value | no value |
| assert.quiet_eval | 0 | 0 |
| assert.warning | 1 | 1 |
| auto_detect_line_endings | 0 | 0 |
| default_socket_timeout | 60 | 60 |
| from | no value | no value |
| url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
| user_agent | no value | no value |
| Tokenizer Support | enabled |
| WDDX Support | enabled |
|---|---|
| WDDX Session Serializer | enabled |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.9.1 |
| XMLReader | enabled |
| core library version | xmlrpc-epi v. 0.51 |
| php extension version | 0.51 |
| author | Dan Libby |
| homepage | http://xmlrpc-epi.sourceforge.net |
| open sourced by | Epinions.com |
| XMLWriter | enabled |
| XSL | enabled |
| libxslt Version | 1.1.27 |
| libxslt compiled against libxml Version | 2.7.8 |
| EXSLT | enabled |
| libexslt Version | 0.8.16 |
| Zip | enabled |
| Extension Version | $Id: 05dd1ecc211075107543b0ef8cee488dd229fccf $ |
| Zip version | 1.11.0 |
| Libzip version | 0.10.1 |
| ZLib Support | enabled |
|---|---|
| Stream Wrapper | compress.zlib:// |
| Stream Filter | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.7.3 |
| Linked Version | 1.2.7.3 |
| Directive | Local Value | Master Value |
|---|---|---|
| zlib.output_compression | Off | Off |
| zlib.output_compression_level | -1 | -1 |
| zlib.output_handler | no value | no value |
| Module Name |
|---|
| Host | localhost |
|---|---|
| User-Agent | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0 |
| Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
| Accept-Language | cs,en-us;q=0.7,en;q=0.3 |
| Accept-Encoding | gzip, deflate |
| DNT | 1 |
| Referer | http://localhost/BPIS/www/admin/event/detail/32 |
| Cookie | _ga=GA1.1.995278083.1412259016; PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel=; tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel=; tracy-debug-panel-Tracy-Debugger-dumps=910:554; tracy-debug-bar=3:0; nette-browser=g07tc9etp7 |
| Connection | keep-alive |
| Cache-Control | max-age=0 |
empty
empty
| _ga | "GA1.1.995278083.1412259016" (26)
|
|---|---|
| PHPSESSID | "92ukan969rvu0e5s0ebrd05qi3" (26)
|
| tracy-debug-panel-Nette-Bridges-ApplicationTracy-RoutingPanel | ""
|
| tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel | ""
|
| tracy-debug-panel-Tracy-Debugger-dumps | "910:554" (7)
|
| tracy-debug-bar | "3:0" (3)
|
| nette-browser | "g07tc9etp7" (10)
|
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
X-Frame-Options: SAMEORIGIN
X-Powered-By: Nette Framework
Content-Type: text/html; charset=utf-8
Vary: X-Requested-With
Set-Cookie: PHPSESSID=92ukan969rvu0e5s0ebrd05qi3; expires=Sun, 24-May-2015 18:03:46 GMT; Max-Age=1209600; path=/; httponly
Set-Cookie: nette-browser=g07tc9etp7; path=/; httponly